home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / callback.001 / callback~ / callback / lib / ttyline / gettyline.c < prev    next >
C/C++ Source or Header  |  1996-07-22  |  167b  |  14 lines

  1.  
  2. #include "ttyline.p"
  3.  
  4. char *get_ttyline(unsigned index)
  5. {
  6.     return 
  7.     (
  8.         index >= n_lines ?
  9.             NULL
  10.         :
  11.             ttyline[index]
  12.     );
  13. }
  14.